home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 11 / AMUG BBS in a Box Volume XI (April 1994) (MacWizards).iso / Files / QuickTime / QT Tools / QuickTime Interfacing.sit / QuickTime Interfacing / SeeMovieRun folder / sources / * Read Me First.c next >
Encoding:
Text File  |  1992-07-26  |  2.8 KB  |  95 lines  |  [TEXT/KAHL]

  1. /*
  2.     
  3.     See Movie Run
  4.     -------------
  5.     
  6.     Copyright © 1992 Joe Zobkiw. All Rights Reserved.
  7.     Portions Copyright © 1990 Symantec Corporation. All rights reserved.
  8.     
  9.     See Movie Run is based on the CMovie THINK Class Library class that
  10.     implements a QuickTime movie pane with a standard movie controller
  11.     attached. 
  12.     
  13.     This application and source code require that the QuickTime extension
  14.     be loaded. I should work under any configuration that QuickTime works
  15.     with.
  16.     
  17.     Development of this project was completed using the following (worth
  18.     mentioning) hardware and software:
  19.     
  20.         • THINK C 5 (Symantec)
  21.         • Resorcerer (Mathemæsthetics)
  22.         • ResEdit (Apple)
  23.         • Radius Rocket
  24.         • Mirror Technologies CD ROM drive
  25.         • QuickTime! (Apple)
  26.         
  27.     
  28.     Known Bugs
  29.     ----------
  30.     
  31.     The following bugs are known to exist:
  32.     
  33.         - Updating problem with standard movie controller after you close
  34.         Clipboard. The controller will not update properly when the second
  35.         window becomes active. The controller stays disabled in appearance
  36.         but will function normally when clicked.
  37.     
  38.         - If you resize the window to be smaller than the movie within it
  39.         the movie will overwrite the scrollbars. I think this has something
  40.         to do with QuickTime calling CopyBits and me not setting a clipping
  41.         region properly. The quick fix is to make the user unable to size 
  42.         the window smaller than the movie…but this is a bit cheesy…eventually
  43.         you will want to be able to scroll the pane within the window.
  44.     
  45.     
  46.     Other Stuff
  47.     -----------
  48.     
  49.     If anyone is interested in hearing about an alternate way to implement the
  50.     event broadcasting mechanism (as mentioned to me by Brian Gaines) feel 
  51.     free to email me. Thanks Brian!
  52.     
  53.     
  54.     Legal Stuff
  55.     -----------
  56.     
  57.     The source code in this project that is not covered by Symantec Corporation's
  58.     copyright is in the public domain. That is any source code in this project
  59.     that was written by Joe Zobkiw -- including but not limited to:
  60.     
  61.         • CEBCollaborator.c
  62.         • CEBSwitchboard.c
  63.         • CMovie.c
  64.         • CQTApp.c
  65.         • CQTDoc.c
  66.         • CQTPane.c
  67.         • Globals.c
  68.         • QuickTime Utilities.c
  69.         • SeeMovieRun.c
  70.  
  71.     You may use this source code in any way you see fit. If you do use it I
  72.     would appreciate a small mention in your scrolling list of credits.
  73.     
  74.     The accompanying paper describing the concepts in this source code can
  75.     not be reprinted in part or in whole without the express written permission
  76.     of Joe Zobkiw. However, it may be distributed freely as long as it is not
  77.     charged for in any way.
  78.     
  79.     
  80.     Disclaimer
  81.     ----------
  82.     
  83.     The author will not be held responsible for anything that happens because of
  84.     the use of this software. You are using this software and its enclosed source
  85.     code at your own risk.
  86.     
  87.     
  88.     You can contact the author:
  89.     
  90.         Internet:         zobkiw@world.std.com
  91.         America Online: AFL Zobkiw
  92.         CompuServe:        >INTERNET:zobkiw@world.std.com
  93.         AppleLink:        zobkiw@world.std.com@INTERNET#
  94.         
  95. */